home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / Centri / Centri.dir / 00145_Script_Definition < prev    next >
Text File  |  1999-02-25  |  986b  |  29 lines

  1. property whichSprite, orangeSprite, blackSprite
  2.  
  3. on beginSprite me
  4.   set the moveableSprite of sprite the spriteNum of me = TRUE
  5.   set the moveableSprite of sprite 22 = TRUE
  6.   set the moveableSprite of sprite 23 = TRUE
  7. end 
  8.  
  9.  
  10. on mouseUp me
  11.   if the memberNum of sprite the spriteNum of me = blackSprite then
  12.     set the memberNum of sprite the spriteNum of me = orangeSprite
  13.     set the visibility of sprite whichSprite = TRUE
  14.     set the loc of sprite whichSprite to point (the mouseh, the mousev - 60)
  15.   else 
  16.     set the memberNum of sprite the spriteNum of me = blackSprite
  17.     set the visibility of sprite whichSprite = FALSE
  18.     
  19.   end if
  20. end
  21.  
  22.  
  23. on getPropertyDescriptionList
  24.   set p_list = [¼
  25.             whichSprite: [ #default:0, #format:#integer, #comment:"Scroll displacement"],¼
  26.   orangeSprite: [ #default:0, #format:#integer, #comment:"orangeSprite"],¼
  27.    blackSprite: [ #default:0, #format:#integer, #comment:"blackSprite"]] 
  28.   return p_list
  29. end